home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 19 / CU Amiga Magazine's Super CD-ROM 19 (1998)(EMAP Images)(GB)[!][issue 1998-02].iso / CUCD / Sound / MrMPEG / Clear.rexx < prev    next >
OS/2 REXX Batch file  |  1997-11-22  |  285b  |  14 lines

  1. /* Clear.rexx */
  2.  
  3. options results; address MrMPEG
  4.  
  5. MUIA_List_Entries    = 0x80421654;    MUIA_ShowMe        = 0x80429ba8
  6. MUIV_List_Remove_Active    = -1
  7.  
  8. list ID SLIST ATTRS MUIA_List_Entries; max = result
  9. do i = 0 to max - 1
  10.   list ID SLIST REMOVE POS MUIV_List_Remove_Active
  11. end
  12. call Stop()
  13. return
  14.